home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / prog / atari / c / berm122 / makefile.nt < prev    next >
Makefile  |  1993-08-16  |  690b  |  26 lines

  1. # Bermuda makefile for MicroSoft WIN32 SDK (0393BETA)
  2. #
  3. !include <ntwin32.mak>
  4.  
  5. all: import.exe pack.exe crunch.exe scan.exe
  6.  
  7. import.exe: import.obj utextra.obj
  8.   $(link) $(linkdebug) $(conflags) -out:$*.exe $** $(conlibsdll) \
  9.     user32.lib
  10.  
  11. pack.exe: pack.obj route.obj patmat.obj utextra.obj
  12.   $(link) $(linkdebug) $(conflags) -out:$*.exe $** $(conlibsdll) \
  13.     user32.lib
  14.  
  15. scan.exe: scan.obj utextra.obj
  16.   $(link) $(linkdebug) $(conflags) -out:$*.exe $** $(conlibsdll) \
  17.     user32.lib
  18.  
  19. crunch.exe: crunch.obj utextra.obj
  20.   $(link) $(linkdebug) $(conflags) -out:$*.exe $** $(conlibsdll) \
  21.     user32.lib
  22.  
  23. .c.obj:
  24.   $(cc) $(cdebug) $(cflags) $(cvarsdll) $*.c
  25.  
  26.